home *** CD-ROM | disk | FTP | other *** search
/ F1 Licenseware / F1 Licenseware - Volume 1.iso / disks / 003.dms / 003.adf / EXAMPLE_PROGRAMS / example2.AMOS / example2.amosSourceCode
AMOS Source Code  |  1993-02-25  |  576b  |  17 lines

  1. 'EXAMPLE PROGRAM TWO 
  2. '
  3. '
  4. 'This little program prints a message on a black screen and then waits 
  5. 'for any key to be pressed before returning the user back here, to the editor. 
  6. '  
  7. '
  8. Rem This is the difference using colons can make to the readability
  9. Rem and size of your listings the single line below is example1.amos 
  10. Rem all bunged smartly on one line seperated by colons.  
  11. '
  12. '
  13. Paper 0 : Curs Off : Hide : Cls 0 : Print "Testing...." : Wait Key : Edit 
  14. '
  15. '
  16. Rem You can use REM or a ' whatever suits you, it tells Amos not to  
  17. Rem execute anything following on that line